home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / t100.zoo / uline.c < prev    next >
C/C++ Source or Header  |  1991-09-15  |  561b  |  36 lines

  1. /*
  2.  *    uline.c
  3.  */
  4.  
  5. #ifndef lint
  6. static char *rcsid_uline_c = "$Id: uline.c,v 1.0 1991/09/12 20:32:56 rosenkra Exp $";
  7. #endif
  8.  
  9. /*
  10.  * $Log: uline.c,v $
  11.  * Revision 1.0  1991/09/12  20:32:56  rosenkra
  12.  * Initial revision
  13.  *
  14.  */
  15.  
  16. #include "uline.h"
  17.  
  18. int    load_msp_font (int, short *);
  19.  
  20. /*------------------------------*/
  21. /*    fnt_uline        */
  22. /*------------------------------*/
  23. void fnt_uline ()
  24. {
  25.  
  26. /*
  27.  *    set font to underline
  28.  */
  29.  
  30.     extern short    f8x16ul[];    /* font data, underline */
  31.  
  32.     load_msp_font (1, (short *) f8x16ul);
  33.  
  34.     return;
  35. }
  36.